home *** CD-ROM | disk | FTP | other *** search
/ Freelog 115 / FreelogNo115-MaiJuin2013.iso / Internet / Filezilla Server / FileZilla_Server-0_9_41.exe / source / interface / misc / SBDestination.h < prev    next >
C/C++ Source or Header  |  2011-11-06  |  777b  |  34 lines

  1. // SBDestination.h: interface for the CSBDestination class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. //
  5. // Copyright 1998 Scott D. Killen
  6. //
  7. //////////////////////////////////////////////////////////////////////
  8.  
  9. #ifndef __SBDESTINATION_H__
  10. #define __SBDESTINATION_H__
  11.  
  12. #if _MSC_VER >= 1000
  13. #pragma once
  14. #endif // _MSC_VER >= 1000
  15.  
  16. #include "BrowseForFolder.h"
  17.  
  18. class CSBDestination : public CBrowseForFolder  
  19. {
  20. public:
  21.     CSBDestination(const HWND hParent = NULL, const int nTitleID = 0);
  22.     ~CSBDestination();
  23.  
  24.     void SetInitialSelection(const CString& strPath);
  25.  
  26.     void OnInit() const;
  27.     void OnSelChanged(const LPITEMIDLIST pidl) const;
  28.  
  29. private:
  30.     CString m_strInitialSelection;
  31. };
  32.  
  33. #endif // __SBDESTINATION_H__
  34.